home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 2375 < prev    next >
Encoding:
Internet Message Format  |  1996-08-06  |  1.5 KB

  1. Path: news.tu-ilmenau.de!usenet
  2. From: Lars Krueger <ai108@rz.tu-ilmenau.de>
  3. Newsgroups: rec.games.programmer,comp.lang.c,comp.lang.c++
  4. Subject: Re: help on watcom C++
  5. Date: Wed, 17 Jan 1996 12:31:43 +0100
  6. Organization: Technische Universitaet Ilmenau
  7. Message-ID: <30FCDE1F.635D5CC1@rz.tu-ilmenau.de>
  8. References: <4df3d4$i31@bolivia.it.earthlink.net>
  9. NNTP-Posting-Host: scenic-03.rz.tu-ilmenau.de
  10. Mime-Version: 1.0
  11. Content-Type: text/plain; charset=us-ascii
  12. Content-Transfer-Encoding: 7bit
  13. X-Mailer: Mozilla 2.0b5 (X11; I; Linux 1.2.13 i586)
  14.  
  15. Anthony Kanner wrote:
  16. > OK I got watcom c++ 10.5.  I know how to do the basics of it
  17. > but the instruction manual is incredibly short that comes with
  18. > watcom C++ and to buy the books cost over $130! Is there anyway
  19. > I can really learn all of the features of watcom c++ without
  20. > getting the BIG bookset?
  21. > - Anthony
  22. Hi.
  23.  
  24. You dont need to buy the books because they are accessible online
  25. from the CD-ROM.
  26.  
  27. If you installed the WINDOWS related files you can read the docs as
  28. WINDOWS-helpfiles (*.hlp) or if you use the DOS Compiler (my favourite one)
  29. you try after setting all the PATH's correct etc.
  30.  
  31.  WHELP
  32.  
  33. It gives you a list of all *.ihp files (the DOS-version of the *.hlp files)
  34. found and you can choose then the one you want to read. Like this:
  35.  
  36. WHELP clib 
  37.  
  38. If you need help for a special topic of the file and you know its name like 
  39. "printf" or "getchar" try
  40.  
  41. WHELP clib printf
  42. or
  43. WHELP clib getchar
  44.  
  45. and the helper program opens the page you wanted.
  46.  
  47. Hope that helps
  48.  
  49. Lars.
  50.